body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #c4a354;  /*полоски верх и низ*/
}
section {
    max-width: auto;
    margin: 0px auto;
    padding: 20px;
    background: #c4a354;     
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.9);
    border-radius: 8px;
}          /*заливка внешнего фона, а марджин делает полоски*/

.header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px; 
    color: #c4a354; 
}

.places {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.place {
    background: #d0b678;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    text-align: center;
    /*заливка внешнего фона, а марджин делает полоски 3 поля*/
}
.place input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}
.place img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.button {
    background: linear-gradient(45deg, #c4a354, #d0b678);
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(72, 163, 64, 0.4);
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background: linear-gradient(45deg, #c4a354, #d0b678);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 37, 37, 0.6);
}

.button:active {
    transform: scale(0.95);
}

@media (min-width: 600px) {
    .places {
        flex-direction: row;
        justify-content: space-between;
    }
    .place {
        flex: 1;
    }
}